I am using a looped array in which a mathematical equation is derived. I have set the following:
The problem is it is too sensitive. I would like to set ranges (+/- 5%) in order to find a ballpark or I would never get an answer.Code:int answer; answer = AnotherEquation * TheSecondEquation + AbunchOfOtherCrud / ThisGetsPrettyComplicated; loop goes here::::::::::: if answer = array1[i]/array2[z] {then do this}
I would prefer to have the range set in the output from the array (for instance the higher the number the more range I would like -whereas the lower numbers would receive less range).
Thanks to all! I appreciate you not letting me feel like a total C++ moron.


CornedBee